projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39c9b67
)
* src/keyboard.c (echo_add_key): Mention quick-help
author
Philip Kaludercic
<philipk@posteo.net>
Sun, 16 Oct 2022 22:36:06 +0000
(
00:36
+0200)
committer
Philip Kaludercic
<philipk@posteo.net>
Sun, 16 Oct 2022 22:36:06 +0000
(
00:36
+0200)
src/keyboard.c
patch
|
blob
|
history
diff --git
a/src/keyboard.c
b/src/keyboard.c
index 8ab4a451b4560599ad9c6bd738fa215c42029b63..224512bfc925f2918a2133690f4d39399fc5a916 100644
(file)
--- a/
src/keyboard.c
+++ b/
src/keyboard.c
@@
-503,9
+503,11
@@
echo_add_key (Lisp_Object c)
if ((NILP (echo_string) || SCHARS (echo_string) == 0)
&& help_char_p (c))
{
- AUTO_STRING (str, " (Type ? for further options)");
+ AUTO_STRING (str, " (Type ? for further options
, q for quick help
)");
AUTO_LIST2 (props, Qface, Qhelp_key_binding);
Fadd_text_properties (make_fixnum (7), make_fixnum (8), props, str);
+ Fadd_text_properties (make_fixnum (30), make_fixnum (31), props,
+str);
new_string = concat2 (new_string, str);
}